home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Internet
/
WWW
/
httpd_1.5.export
/
cgi-bin
/
uptime
< prev
next >
Wrap
Text File
|
1995-11-09
|
165b
|
15 lines
#!/bin/sh
UPTIME=/usr/ucb/uptime
echo Content-type: text/plain
echo
if [ -x $UPTIME ]; then
$UPTIME
else
echo Cannot find uptime command on this system.
fi